home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr47 / qfml10.zip / EXAMPLE1.MAK < prev    next >
Text File  |  1995-01-31  |  826b  |  65 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +EXAMPLE1.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = C:\SYSOP\BORLANDC\LIB
  9. INCLUDEPATH = C:\SYSOP\BORLANDC\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  example1.obj \
  24.  qfml.obj
  25.  
  26. #        *Explicit Rules*
  27. example1.exe: example1.cfg $(EXE_dependencies)
  28.   $(TLINK) /3/x/c/P-/L$(LIBPATH) @&&|
  29. c0m.obj+
  30. example1.obj+
  31. qfml.obj
  32. example1
  33.         # no map file
  34. cm.lib
  35. |
  36.  
  37.  
  38. #        *Individual File Dependencies*
  39. example1.obj: example1.cfg example1.cpp 
  40.  
  41. #        *Compiler Configuration File*
  42. example1.cfg: example1.mak
  43.   copy &&|
  44. -mm
  45. -3
  46. -a
  47. -f-
  48. -K
  49. -O
  50. -Oe
  51. -Ob
  52. -Z
  53. -k-
  54. -vi-
  55. -H=EXAMPLE1.SYM
  56. -wpro
  57. -weas
  58. -wpre
  59. -I$(INCLUDEPATH)
  60. -L$(LIBPATH)
  61. -P
  62. | example1.cfg
  63.  
  64.  
  65.